python program to add two numbers

39

Python of add two numbers -

a = int(input("Enter Teh value of a: "))
b = int(input("Enter The value of b: "))

sum = a+b
print(sum)

Comments

Submit
0 Comments